# This is a modified Crynwr makefile to just make ibmtoken.com.
#
# I modified it to use exe2bin, rather than exe2com, since DR DOS 6
# (which I use and love) shipped with it.  I did include the source
# for exe2com.c, for those of you less fortunate.
#
# John de Longpre (JED) <72477.636@compuserve.com>
# -----
#
# makefile for Packet Drivers for Turbo Make.  MS-Make loses.
#
# if you use Borland products
ASM	=	tasm
LINK	=	tlink

# If you use Microsoft products (some lossage will ensue).  Great
# lossage will ensue if you use masm 4.0, but most things will
# assemble.  For those that do not, simply create the .obj file by
# hand, then create the .com file.  That will enable make to skip
# over them.  Please send the editor email
# <nelson@crynwr.com>, or a FAX <315-268-1925> if Microsoft
# support is useful to you.
#ASM	=	masm
#LINK	=	link

.asm.obj:
	$(ASM) $*;

ibmtoken.com: head.obj ibmtoken.obj tail.obj
	$(LINK) head ibmtoken tail,ibmtoken/m;
#	exe2com ibmtoken  Changed to exe2bin  JED
	exe2bin ibmtoken
	del ibmtoken.exe

head.obj: head.asm defs.asm

